// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... using JetBrains.Annotations; namespace LargoCommon.Music { /// Degree of rhythmical systems. public enum RhythmicDegree { /// Degree of system. [UsedImplicitly] None = 0, /// Degree of system. Shape = 2, /// Degree of system. Structure = 3 } }